home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / sys / amiga / hardware-part1 / 8565 < prev    next >
Encoding:
Internet Message Format  |  1996-08-05  |  2.3 KB

  1. Path: news.mel.aone.net.au!usenet
  2. From: mpa@iig.com.au (Mark P Allen)
  3. Newsgroups: comp.sys.amiga.hardware
  4. Subject: Re: pioneer 624 and amicdrom
  5. Date: 28 Mar 1996 22:33:22 GMT
  6. Message-ID: <2016.6661T1260T791@iig.com.au>
  7. References: <4jaa76$1ie@texas.nwlink.com>
  8. NNTP-Posting-Host: cnsta05.iig.com.au
  9. X-Newsreader: THOR 2.22 (Amiga;TCP/IP) *UNREGISTERED*
  10.  
  11.  
  12. On 27-Mar-96 12:47:02, Mike Grove wrote:
  13.  
  14.  MG> I am trying to access the 2 thru 6 cd in a pioneer 624 cdrom and 
  15.  MG> amicdrom.  The directions state that in the mountlist, the units is n4, 
  16.  MG> where the 4 is the SCSI id and n is the disk you want to mount.  But this
  17.  MG>  isn't working for me..  Any help would be appreciated.
  18.  
  19. Firstly, make sure the device driver (eg., scsi.device) is set to check
  20. for LUN numbers after 0. With scsi.device, this can be done in software
  21. with Setbatt. With the WARP Engine SCSI host, it is a jumper setting.
  22.  
  23. Here is an example AmiCDFileSystem DOSDriver I use with a Pioneer DRM-602x
  24. 6-stacker. I leave the cartridge out during boot, since the SCSI bus will
  25. load and check each CD before continuing with the boot-process. This
  26. becomes tiring pretty quick, and consumes memory.
  27.  
  28. DOSDriver
  29. ---------
  30.  
  31.  /* $VER: CD0 37.1 (3.10.94)
  32.   *
  33.   * CD-ROM filesystem mount entry
  34.   */
  35.  
  36.  FileSystem      = L:AmiCDFileSystem
  37.  Flags           = 0
  38.  BlocksPerTrack  = 32
  39.  BlockSize       = 2048
  40.  Mask            = 0x7ffffffe
  41.  LowCyl          = 0
  42.  HighCyl         = 11000
  43.  Surfaces        = 1
  44.  Buffers         = 30 /* Number of standard buffers */
  45.  BufMemType      = 2
  46.  GlobVec         = -1
  47.  Priority        = 10
  48.  DosType         = 0x41434400
  49.  StackSize       = 600
  50.  
  51. Icon Tooltypes
  52. --------------
  53.  
  54.  DEVICE=scsi.device
  55.  UNIT=02
  56.  CONTROL=L
  57.  ACTIVATE=0
  58.  DONOTWAIT
  59.  
  60. If you want to mount each available CD on boot, place the DOSDrivers in
  61. WBStartup instead, and set ACTIVATE=1. The DONOTWAIT tooltype makes the
  62. mounting process asyncronous to the rest of the boot process.
  63.  
  64. As you can see, the unit is "02", meaning that the first CD is LUN 0 on
  65. SCSI ID 2. The next CD in the sequence is "12" (LUN 1, ID 2), and the last
  66. of 6 would be "52".
  67.  
  68. The CONTROL=L tooltype maps ISO-9660 names to lower case on WB3.x systems.
  69.  
  70. Hope this helps...
  71.  
  72. Regards,
  73.  
  74.          Mark
  75.  
  76. ---
  77.    mpa@iig.com.au     -    Ph:+61-70-332930     -         Cairns
  78.    Wishful Vision     -    Fx:+61-70-332931     -      Australia
  79. ---
  80.  
  81.  
  82.